This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
~Bill Desjipymanakoi 27.Jan.04 07:43 AM a Web browser Domino Designer6.5Windows XP
If your computer use scandinavian character set, you have to do changes in SoapConnect.
You have to replace "." with ","
Function ReplaceSubstring(inputStr As String, fromStr As String, toStr As
String) As String
' This function acts similarly to the @Formula language function '
@ReplaceSubstring'
Dim newStr As String
Dim position As Integer
newStr = inputStr
While Instr(newStr, fromStr) > 0
position = Instr(newStr, fromStr)
newStr = Left$(newStr, position - 1) + toStr + Right$(newStr,
Len(newStr) - (position + Len(fromStr) - 1))
Wend
ReplaceSubstring = newStr